100
|
How can I remove a bookmark
Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.Template = "Bookmark(2) = True" // oEdit.Bookmark(2) = .t.
oEdit.Template = "Bookmark(2) = False" // oEdit.Bookmark(2) = .f.
oEdit.BookmarkWidth = 16
|
99
|
How can I remove all bookmarks
Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.Template = "Bookmark(2) = True" // oEdit.Bookmark(2) = .t.
oEdit.Template = "Bookmark(4) = True" // oEdit.Bookmark(4) = .t.
oEdit.BookmarkWidth = 16
oEdit.ClearBookmarks()
|
98
|
How can I add a bookmark

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.Template = "Bookmark(2) = True" // oEdit.Bookmark(2) = .t.
oEdit.Template = "Bookmark(4) = True" // oEdit.Bookmark(4) = .t.
oEdit.BookmarkWidth = 16
|
97
|
How can I change the format to display the numbers

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.FormatNumbers = "<b><fgcolor=FF0000> </fgcolor></b>"
oEdit.InsertText("Just numbers: 12 22\r\n",1)
|
96
|
Is there any option to change the color for the line that displays the cursor or the caret

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.BackColorCaretLine = 255
|
95
|
Can I display the lines using an alternate color

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.BackColorAlternate = 255
|
94
|
How can I disable or enable displaying the Replace dialog
Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.AllowReplace = .f.
|
93
|
Does your control support incrementasl search

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.AllowIncrementalSearch = .t.
|
92
|
How can I programmatically find or search for a word only
Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.HideSelection = .f.
oEdit.Find("IDD_DIALOG_INSTALL",2)
|
91
|
How can I programmatically find or search for a string

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.HideSelection = .f.
oEdit.Find("public",0)
|
90
|
How can I disable or enabled the Find dialog
Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.AllowFind = .f.
|
89
|
How can I enable my button as the control can perform an REDO operation

Dim oEdit as P
Dim var_CanRedo as
oEdit = topparent:CONTROL_ACTIVEX1.activex
var_CanRedo = oEdit.CanRedo
|
88
|
How can I enable my button as the control can perform an UNDO operation
Dim oEdit as P
Dim var_CanUndo as
oEdit = topparent:CONTROL_ACTIVEX1.activex
var_CanUndo = oEdit.CanUndo
|
87
|
How can I disable or enable the undo-redo feature

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.AllowUndoRedo = .f.
|
86
|
How can I change the color for the border where the line numbers are displayed

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.LineNumberForeColor = 255
oEdit.LineNumberBackColor = 16711680
oEdit.LineNumberWidth = 32
|
85
|
How can I change the color of the bookmark border

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.BookMarkBackColor = 255
oEdit.BookMarkBackColor2 = 255
oEdit.BookmarkWidth = 16
|
84
|
How can I refresh the control

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.AddKeyword("<b>class</b>","this is a bit of text that's shown when the cursor hovers the <b>class</b> keyword.","exontrol.edit")
oEdit.Refresh()
|
83
|
How can I change the size of the tabs characters

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.TabLength = 8
|
82
|
I've seen that if I press CTRL + ( I get the matching braket. How can I extend this
Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.OpenBrackets = "<"
oEdit.CloseBrackets = ">"
|
81
|
How can I hide the selection
Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.DisplaySelection = .f.
|
80
|
How can I display both scroll bars

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.ScrollBars = 3
|
79
|
How can I display only the vertical scroll bar

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.ScrollBars = 2
|
78
|
How can I display only the horizontal scroll bar

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.ScrollBars = 1
|
77
|
How can I hide the control's scroll bars

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.ScrollBars = 0
|
76
|
How can I insert at specified position a new line

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.InsertText("newline\r\n",2)
oEdit.Template = "BackColorLine(2) = 255" // oEdit.BackColorLine(2) = 255
|
75
|
How can I remove or delete all lines
Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.Text = ""
|
74
|
How can I remove or delete a line

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.DeleteLine(1)
|
73
|
How do I change the character where the caret or the cursor is displayed
Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.CaretPos = 10
|
72
|
How do I change the line where the caret or the cursor is displayed
Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.CaretLine = 10
|
71
|
How do I replace a line

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.Template = "TextLine(1) = `new line`" // oEdit.TextLine(1) = "new line"
|
70
|
How do I get a line
Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.Template = "TextLine(1) = `new line`" // oEdit.TextLine(1) = "new line"
|
69
|
How do I get the number of lines in the control
Dim oEdit as P
Dim var_Count as
oEdit = topparent:CONTROL_ACTIVEX1.activex
var_Count = oEdit.Count
|
68
|
How do I get the point where the selection starts

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.SelStart = 4
oEdit.SelLength = 10
oEdit.HideSelection = .f.
|
67
|
How do I get the number of selected characters

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.SelLength = 10
oEdit.HideSelection = .f.
|
66
|
How can I get the selected text
Dim oEdit as P
Dim var_SelText as
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.SelLength = 10
var_SelText = oEdit.SelText
|
65
|
How can I replace the selected text

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.SelLength = 10
oEdit.SelText = "-new selection-"
|
64
|
How can I avoid changing the colors for keywords or expressions

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.ApplyColors = .f.
oEdit.AddKeyword("<fgcolor=FF0000><b>class</b></fgcolor>","this is a bit of text that's shown when the cursor hovers the <b>class</b> keyword.","exontrol.edit")
oEdit.Refresh()
|
63
|
How can I display HTML text

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.EditType = 2
oEdit.Text = "<b>just a HTML text</b>\r\nnew <s>line</s>"
|
62
|
How can I use it a a simple edit control, without highlighting

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.EditType = 0
|
61
|
How can I save the text to a file
Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
|
60
|
How can I save the text to a file
Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
|
59
|
How can I load text from a file
Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
|
58
|
How can I load text from a file
Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
|
57
|
How can I display only a single line
Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.MultiLine = .f.
|
56
|
How can I disable displaying multiple lines
Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.MultiLine = .f.
|
55
|
How can change the color for selected text

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.HideSelection = .f.
oEdit.SelLength = 10
oEdit.SelBackColor = 255
|
54
|
How can change the color for selected text

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.HideSelection = .f.
oEdit.SelLength = 10
oEdit.SelForeColor = 255
|
53
|
How can I disable displaying the control's context menu
Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.AllowContextMenu = .f.
|
52
|
Is there any option to hide the caret or the cursor
Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.ShowCaret = .f.
|
51
|
How can still display the selected text when the control loses the focus

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.HideSelection = .f.
oEdit.SelLength = 10
|
50
|
How can I disable adding new TAB characters when the user enters a new line
Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.AutoIndent = .f.
|
49
|
How can I disable using the Tab key
Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.UseTabKey = .f.
|
48
|
How can I hide the number of each line
Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.LineNumberWidth = 0
|
47
|
How can I display or show the number of each line

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.LineNumberWidth = 32
|
46
|
How can I clear the text
Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.Text = ""
|
45
|
How can I specify the text being displayed in the control

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.Text = "new line\r\nnew line"
|
44
|
How can I hide the bookmark border
Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.BookmarkWidth = 0
|
43
|
How can I show the bookmark border

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.BookmarkWidth = 16
|
42
|
How do I lock the control

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.Locked = .t.
|
41
|
How do I disable or enable the control
Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.Enabled = .f.
|
40
|
How can I change the visual appearance of the splitter

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.AllowSplitter = 3
oEdit.SplitPaneWidth = 128
oEdit.SplitPaneHeight = 128
oEdit.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oEdit.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn")
oEdit.Template = "Background(0) = 16777216" // oEdit.Background(0) = 16777216
oEdit.Template = "Background(1) = 16777216" // oEdit.Background(1) = 16777216
oEdit.Template = "Background(2) = 33554432" // oEdit.Background(2) = 33554432
|
39
|
How can I change the visual appearance of the vertical splitter

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.AllowSplitter = 3
oEdit.SplitPaneWidth = 128
oEdit.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oEdit.Template = "Background(0) = 16777216" // oEdit.Background(0) = 16777216
|
38
|
How can I change the visual appearance of the horizontal splitter

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.AllowSplitter = 3
oEdit.SplitPaneHeight = 128
oEdit.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oEdit.Template = "Background(1) = 16777216" // oEdit.Background(1) = 16777216
|
37
|
How do I change the visual aspect for thumb parts in the scroll bars, using EBN

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oEdit.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn")
oEdit.VisualAppearance.Add(3,"c:\exontrol\images\hot.ebn")
oEdit.Template = "Background(388) = 16777216" // oEdit.Background(388) = 16777216
oEdit.Template = "Background(389) = 33554432" // oEdit.Background(389) = 33554432
oEdit.Template = "Background(391) = 50331648" // oEdit.Background(391) = 50331648
oEdit.Template = "Background(260) = 16777216" // oEdit.Background(260) = 16777216
oEdit.Template = "Background(261) = 33554432" // oEdit.Background(261) = 33554432
oEdit.Template = "Background(263) = 50331648" // oEdit.Background(263) = 50331648
|
36
|
How do I change the visual aspect only for the thumb in the scroll bar, using EBN

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oEdit.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn")
oEdit.VisualAppearance.Add(3,"c:\exontrol\images\hot.ebn")
oEdit.Template = "Background(388) = 16777216" // oEdit.Background(388) = 16777216
oEdit.Template = "Background(389) = 33554432" // oEdit.Background(389) = 33554432
oEdit.Template = "Background(391) = 50331648" // oEdit.Background(391) = 50331648
oEdit.Template = "ScrollThumbSize(1) = 96" // oEdit.ScrollThumbSize(1) = 96
|
35
|
I've seen that you can change the visual appearance for the scroll bar. How can I do that

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oEdit.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn")
oEdit.VisualAppearance.Add(3,"c:\exontrol\images\hot.ebn")
oEdit.Template = "Background(324) = 16777216" // oEdit.Background(324) = 16777216
oEdit.Template = "Background(325) = 33554432" // oEdit.Background(325) = 33554432
oEdit.Template = "Background(327) = 50331648" // oEdit.Background(327) = 50331648
oEdit.Template = "Background(404) = 15790320" // oEdit.Background(404) = 15790320
oEdit.Template = "Background(276) = 15790320" // oEdit.Background(276) = 15790320
oEdit.Template = "Background(3) = 15790320" // oEdit.Background(3) = 15790320
|
34
|
Can I change the forecolor for the tooltip

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.ToolTipDelay = 1
oEdit.ToolTipWidth = 364
oEdit.Template = "Background(66) = 255" // oEdit.Background(66) = 255
oEdit.AddKeyword("<b>class</b>","this is a bit of text that's shown when the cursor hovers the <b>class</b> keyword.","exontrol.edit")
oEdit.Refresh()
|
33
|
Can I change the background color for the tooltip

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.ToolTipDelay = 1
oEdit.ToolTipWidth = 364
oEdit.Template = "Background(65) = 255" // oEdit.Background(65) = 255
oEdit.AddKeyword("<b>class</b>","this is a bit of text that's shown when the cursor hovers the <b>class</b> keyword.","exontrol.edit")
oEdit.Refresh()
|
32
|
Can I change the default border of the tooltip, using your EBN files

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.ToolTipDelay = 1
oEdit.ToolTipWidth = 364
oEdit.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oEdit.Template = "Background(64) = 16777216" // oEdit.Background(64) = 16777216
oEdit.AddKeyword("<b>class</b>","this is a bit of text that's shown when the cursor hovers the <b>class</b> keyword.","exontrol.edit")
oEdit.Refresh()
|
31
|
How do I call your x-script language

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.ExecuteTemplate("BackColor = RGB(255,0,0)")
|
30
|
How do I call your x-script language

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.Template = "BackColor = RGB(255,0,0)"
|
29
|
Can I change the font for the tooltip

Dim oEdit as P
Dim var_StdFont as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.ToolTipDelay = 1
var_StdFont = oEdit.ToolTipFont
var_StdFont.Name = "Tahoma"
var_StdFont.Size = 14
oEdit.ToolTipWidth = 364
oEdit.AddKeyword("<b>class</b>","this is a bit of text that's shown when the cursor hovers the <b>class</b> keyword.","exontrol.edit")
oEdit.Refresh()
|
28
|
I've seen that the width of the tooltip is variable. Can I make it larger

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.ToolTipWidth = 328
oEdit.AddKeyword("<b>class</b>","this is a bit of text that's shown when the cursor hovers the <b>class</b> keyword.","exontrol.edit")
oEdit.Refresh()
|
27
|
How do I let the tooltip being displayed longer

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.ToolTipPopDelay = 10000
oEdit.AddKeyword("<b>class</b>","this is a bit of text that's shown when the cursor hovers the <b>class</b> keyword.","exontrol.edit")
oEdit.Refresh()
|
26
|
How do I disable showing the tooltip for all control
Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.ToolTipDelay = 0
oEdit.AddKeyword("<b>class</b>","this is a bit of text that's shown when the cursor hovers the <b>class</b> keyword.","exontrol.edit")
oEdit.Refresh()
|
25
|
How do I show the tooltip quicker

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.ToolTipDelay = 1
oEdit.AddKeyword("<b>class</b>","this is a bit of text that's shown when the cursor hovers the <b>class</b> keyword.","exontrol.edit")
oEdit.Refresh()
|
24
|
Can I change the order of the buttons in the scroll bar

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.Template = "ScrollOrderParts(1) = `t,l,r`" // oEdit.ScrollOrderParts(1) = "t,l,r"
oEdit.Template = "ScrollOrderParts(0) = `t,l,r`" // oEdit.ScrollOrderParts(0) = "t,l,r"
|
23
|
The thumb size seems to be very small. Can I make it bigger

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.Template = "ScrollThumbSize(1) = 164" // oEdit.ScrollThumbSize(1) = 164
|
22
|
How do I enlarge or change the size of the control's scrollbars

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.ScrollHeight = 18
oEdit.ScrollWidth = 18
oEdit.ScrollButtonWidth = 18
oEdit.ScrollButtonHeight = 18
|
21
|
How can I display my text on the scroll bar, using a different font

Dim oEdit as P
Dim var_StdFont as local
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.Template = "ScrollPartCaption(1,256) = `This is just a text`" // oEdit.ScrollPartCaption(1,256) = "This is just a text"
' oEdit.ScrollFont(1).Size = 12
var_StdFont = oEdit.ScrollFont(1)
oEdit.TemplateDef = "dim var_StdFont"
oEdit.TemplateDef = var_StdFont
oEdit.Template = "var_StdFont.Size = 12"
oEdit.Template = "ScrollThumbSize(1) = 128" // oEdit.ScrollThumbSize(1) = 128
oEdit.ScrollHeight = 24
oEdit.Template = "ScrollPartCaption(1,256) = `This is <s><font Tahoma;12> just </font></s> text`" // oEdit.ScrollPartCaption(1,256) = "This is <s><font Tahoma;12> just </font></s> text"
oEdit.ScrollHeight = 20
|
20
|
How can I display my text on the scroll bar

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.Template = "ScrollPartCaption(1,256) = `this is just a text`" // oEdit.ScrollPartCaption(1,256) = "this is just a text"
oEdit.Template = "ScrollThumbSize(1) = 96" // oEdit.ScrollThumbSize(1) = 96
|
19
|
How do I assign a tooltip to a scrollbar

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oEdit.Template = "ScrollToolTip(1) = `This is a <img>0x1000000</img>tooltip being shown when you click and drag the thumb in the horizontal scroll bar`" // oEdit.ScrollToolTip(1) = "This is a <img>0x1000000</img>tooltip being shown when you click and drag the thumb in the horizontal scroll bar"
|
18
|
How do I assign an icon to the button in the scrollbar

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oEdit.Template = "ScrollPartVisible(1,32768) = True" // oEdit.ScrollPartVisible(1,32768) = .t.
oEdit.Template = "ScrollPartCaption(1,32768) = `<img>1</img>`" // oEdit.ScrollPartCaption(1,32768) = "<img>1</img>"
oEdit.ScrollHeight = 18
oEdit.ScrollButtonWidth = 18
|
17
|
I need to add a button in the scroll bar. Is this possible

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.Template = "ScrollPartVisible(1,32768) = True" // oEdit.ScrollPartVisible(1,32768) = .t.
oEdit.Template = "ScrollPartCaption(1,32768) = `1`" // oEdit.ScrollPartCaption(1,32768) = "1"
|
16
|
Can I display an additional buttons in the scroll bar

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.Template = "ScrollPartVisible(1,32768) = True" // oEdit.ScrollPartVisible(1,32768) = .t.
oEdit.Template = "ScrollPartVisible(1,16384) = True" // oEdit.ScrollPartVisible(1,16384) = .t.
oEdit.Template = "ScrollPartVisible(1,1) = True" // oEdit.ScrollPartVisible(1,1) = .t.
oEdit.Template = "ScrollPartVisible(1,2) = True" // oEdit.ScrollPartVisible(1,2) = .t.
|
15
|
How do I change the control's foreground color

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.ForeColor = 255
|
14
|
How do I change the control's background color

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.BackColor = 13158600
|
13
|
How can I change the control's font

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.Font.Name = "Verdana"
|
12
|
How do I put a picture on the center of the control

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.Picture = oEdit.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
oEdit.PictureDisplay = 17
|
11
|
How do I resize/stretch a picture on the control's background

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.Picture = oEdit.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
oEdit.PictureDisplay = 49
|
10
|
How do I put a picture on the control's center right bottom side

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.Picture = oEdit.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
oEdit.PictureDisplay = 34
|
9
|
How do I put a picture on the control's center left bottom side

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.Picture = oEdit.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
oEdit.PictureDisplay = 32
|
8
|
How do I put a picture on the control's center top side

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.Picture = oEdit.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
oEdit.PictureDisplay = 1
|
7
|
How do I put a picture on the control's right top corner

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.Picture = oEdit.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
oEdit.PictureDisplay = 2
|
6
|
How do I put a picture on the control's left top corner

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.Picture = oEdit.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
oEdit.PictureDisplay = 0
|
5
|
How do I put a picture on the control's background

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.Picture = oEdit.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
|
4
|
How do I change the control's border, using your EBN files

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oEdit.Appearance = 16777216 '1000000 +
|
3
|
How do I remove the control's border

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.Appearance = 0
|
2
|
How can I add a line

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.InsertText(" - insert the line as the last - \r\n")
|
1
|
How can I insert a line

Dim oEdit as P
oEdit = topparent:CONTROL_ACTIVEX1.activex
oEdit.InsertText(" - insert the line as the first - \r\n",1)
|